home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Games: Greatest Hits 1996
/
Amiga Games: Greatest Hits 1996.iso
/
archive
/
userbox
/
publicdomain
/
superplay-lib_usr.lha
/
superplay-lib_USR
/
Install_SPLib
< prev
next >
Wrap
Text File
|
1996-05-27
|
2KB
|
70 lines
; $VER: Install_SPLib V4.5 (27.5.96)
; © 1993-96 by Andreas R. Kleinert.
; This is the Installer Script for superplay.library V4+
(set MC68x (database "cpu"))
(set @app-name "SuperPlay-Library")
;(makedir "ENV:SuperPlay-Library")
;(makedir "ENVARC:SuperPlay-Library")
(copylib
(prompt "Installing superplay.library to LIBS: ...")
(help @copylib-help)
(source "libs/superplay.library")
(set splibdir
(askdir
(prompt "Library Path")
(help @askdir-help)
(newpath)
(default "LIBS:")
)
)
(dest splibdir)
)
;(makedir "SYS:locale")
;(makedir "SYS:locale/catalogs")
;(copyfiles
; (prompt "Installing OS 2.1+ catalog files ...")
; (help @copyfiles-help)
; (source "locale/catalogs")
; (set spcatdir
; (askdir
; (prompt "Catalog Path")
; (help @askdir-help)
; (newpath)
; (default "SYS:locale/Catalogs")
; )
; )
; (dest spcatdir)
; (all)
;)
(set spobjectdir (tackon splibdir "spobjects"))
(makedir spobjectdir)
(copyfiles
(prompt "Installing spobjects to LIBS:spobjects ...")
(help @copyfiles-help)
(source "libs/spobjects")
(dest (tackon splibdir "spobjects"))
(pattern "#?")
(confirm)
(files)
)
(if (>= MC68x 68020)
(
(copyfiles
(prompt "Installing special 68020+ versions of some spobjects");
(help @copyfiles-help)
(source "libs/68030")
(dest splibdir)
(confirm)
(all)
)
)
)